-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (40 loc) · 1.48 KB
/
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
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='mdt',
version='1.0.0',
# description='A sample Python project', # Optional
# long_description=long_description, # Optional
# long_description_content_type='text/markdown', # Optional
# url='https://github.com/pypa/sampleproject', # Optional
# author='A. Random Developer', # Optional
# author_email='[email protected]', # Optional
# keywords='sample, setuptools, development', # Optional
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.7, <4',
install_requires=[
'requests',
'pandas',
'ruamel.yaml'
], # Optional
# If there are data files included in your packages that need to be
# installed, specify them here.
package_data={
"": ['*.sql']
},
# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See:
# http://docs.python.org/distutils/setupscript.html#installing-additional-files
#
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
# data_files=[('my_data', ['data/data_file'])], # Optional
entry_points={ # Optional
'console_scripts': [
'mdt=mdt.cli:main',
],
},
)