tww/setup.py

49 lines
1.4 KiB
Python
Raw Normal View History

2019-09-23 20:39:59 +02:00
from setuptools import setup
2019-09-23 20:47:46 +02:00
def gen_from_file():
return ['backcall==0.1.0',
2019-12-09 15:26:11 +01:00
'dateparser==0.7.2',
'decorator==4.4.0',
'freezegun==0.3.12',
2019-09-23 20:47:46 +02:00
'fuzzywuzzy==0.17.0',
'geographiclib==1.49',
2019-12-09 15:26:11 +01:00
'geopy==1.20.0',
2019-09-23 20:47:46 +02:00
'importlib-resources==1.0.2',
2019-12-09 15:26:11 +01:00
'ipython==7.8.0',
2019-09-23 20:47:46 +02:00
'ipython-genutils==0.2.0',
2019-12-09 15:26:11 +01:00
'jedi==0.15.1',
'numpy==1.17.2',
'parso==0.5.1',
'pexpect==4.7.0',
2019-09-23 20:47:46 +02:00
'pickleshare==0.7.5',
'prompt-toolkit==2.0.9',
'ptyprocess==0.6.0',
2019-12-09 15:26:11 +01:00
'Pygments==2.4.2',
2019-12-09 15:27:49 +01:00
'python-dateutil==2.8.1',
2019-09-23 20:47:46 +02:00
'python-Levenshtein==0.12.0',
2019-12-09 15:27:49 +01:00
'pytz==2019.3',
'regex==2019.11.1',
'six==1.13.0',
2019-12-09 15:26:11 +01:00
'timezonefinder==4.1.0',
2019-09-23 20:47:46 +02:00
'traitlets==4.3.2',
2019-12-09 15:26:11 +01:00
'tzlocal==2.0.0',
2019-09-23 20:47:46 +02:00
'wcwidth==0.1.7',
'word2number==1.1']
2019-12-09 15:26:11 +01:00
# with open("requirements.txt") as f:
# return [line.strip() for line in f.readlines()]
2019-09-23 20:47:46 +02:00
2019-09-23 20:39:59 +02:00
setup(name='tww',
2019-12-09 15:26:11 +01:00
version='0.2',
2019-09-23 20:39:59 +02:00
description='Time When and Where',
url='http://gitlab.com/pisquared/tww',
author='Flying Circus',
2019-09-23 20:47:46 +02:00
install_requires=gen_from_file(),
2019-09-23 20:39:59 +02:00
author_email='',
license='MIT',
2019-09-23 21:05:32 +02:00
packages=['tww'],
package_dir={'tww': 'src/tww'},
package_data={'tww': ['data/*.csv']},
2019-09-23 20:39:59 +02:00
zip_safe=False)