-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 999 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='dlx-test-sources',
version='1.0.0',
packages=['render', 'data_generator'],
url='https://github.com/datalytyx/dlx-test-sources',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
],
author='Datalytyx',
author_email='[email protected]',
description='dlx-test-sources',
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'data-generator=data_generator:main',
'render=render:main'
]
},
install_requires=[
'jinja2==2.11.2',
'kafka-python==2.0.1',
'Faker==4.1.1',
'mysql-connector-python==8.0.21',
'pyodbc==4.0.30',
'cx-Oracle==8.0.0',
'colorlog==4.2.1',
'psycopg2==2.8.5',
]
)