Merge branch 'pypy-setup' into 'master'
Pypi is now integrated and will build to test and live See merge request james.coyle/storjalytics-client!3
Showing
.gitlab-ci.yml
0 → 100644
requirements.txt
0 → 100644
requests==2.18.4 | ||
python-crontab==2.2.8 | ||
jstyleson==0.0.2 |
#!/usr/bin/env python3 | ||
from setuptools import setup | ||
from pip.req import parse_requirements | ||
setup(name='storjstatus-client', | ||
version=VERSION, | ||
description='Storj utility for reporting farmer statistics', | ||
license='Apache2', | ||
exec(open('storjstatus/version.py').read()) | ||
def dependencies(): | ||
return parse_requirements('requirements.txt', session=False) | ||
def readme(): | ||
with open('README.md') as f: | ||
return f.read() | ||
setup(name='storjstatus', | ||
version=__version__, | ||
description='A utility for reporting Storj farmer statistics', | ||
long_description=readme(), | ||
license='MIT', | ||
packages=['storjstatus'], | ||
version='0.2.0', | ||
author='James Coyle', | ||
author_email='[email protected]', | ||
python_requires='>=3.5', | ||
url='https://www.storjstatus.com/install-client', | ||
install_requires=[ | ||
'requests==2.18.4', | ||
'python-crontab==2.2.8', | ||
'jstyleson==0.0.2', | ||
], | ||
install_requires=[str(ir.req) for ir in dependencies()], | ||
entry_points={ | ||
'console_scripts': [ | ||
'storjstatus-register=storjstatus:register', | ||
... | ... |
storjstatus/version.py
0 → 100644
Please register or sign in to comment