-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (41 loc) · 1.41 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
46
47
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='incomevis',
version='1.0',
description='Visualization toolbox for income distribution',
py_modules=['incomevis'],
# packages=find_packages(), # include all packages under src
# package_dir={'':'src'},
packages=['data'],
# package_dir={'incomevis': 'src/incomevis'},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires = [
'matplotlib >= 3.0',
'numpy >= 1.0',
'pandas >= 1.0',
'multiprocess >= 0.7',
'ipython >= 5.5.0',
'sphinx_rtd_theme',
],
#Including packages and folder in src files
include_package_data = True,
url='https://github.com/sangttruong/incomevis',
author='Sang T. Truong',
author_email='[email protected]'
)
# python setup.py bdist_wheel sdist
# pip install --user -e .
# pip install twine
# twine upload dist/*