tww/setup.py

19 lines
460 B
Python
Raw Normal View History

2020-04-23 11:24:50 +02:00
from setuptools import setup, find_packages
2019-09-23 20:39:59 +02:00
2019-09-23 20:47:46 +02:00
def gen_from_file():
2020-03-18 12:06:53 +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',
2020-03-18 12:06:53 +01:00
author='Daniel Tsvetkov',
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',
2020-04-23 11:24:50 +02:00
packages=find_packages(),
2019-09-23 20:39:59 +02:00
zip_safe=False)