2020-03-18 11:35:48 +01:00
|
|
|
from setuptools import setup, find_packages
|
2020-03-18 11:05:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
def gen_from_file():
|
2020-03-19 14:13:58 +01:00
|
|
|
with open("requirements.txt") as f:
|
|
|
|
return [line.strip() for line in f.readlines()]
|
2020-03-18 11:05:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
setup(name='oshipka',
|
2020-03-18 12:06:11 +01:00
|
|
|
version='0.3',
|
2020-03-18 11:05:50 +01:00
|
|
|
description='oshipka',
|
|
|
|
url='http://gitlab.com/pisquared/oshipka',
|
2020-03-18 11:49:15 +01:00
|
|
|
author='Daniel Tsvetkov',
|
2020-03-18 11:05:50 +01:00
|
|
|
install_requires=gen_from_file(),
|
|
|
|
author_email='',
|
|
|
|
license='MIT',
|
2020-03-18 11:47:36 +01:00
|
|
|
packages=find_packages(),
|
|
|
|
)
|