1
0
mirror of https://github.com/balkian/bitter.git synced 2025-01-02 21:21:26 +00:00
bitter/setup.py

51 lines
1.6 KiB
Python
Raw Normal View History

2016-01-14 20:41:14 +00:00
from setuptools import setup
2018-08-21 10:54:25 +00:00
def parse_requirements(filename):
""" load requirements from a pip requirements file """
with open(filename, 'r') as f:
lineiter = list(line.strip() for line in f)
return [line for line in lineiter if line and not line.startswith("#")]
install_reqs = parse_requirements("requirements.txt")
2018-08-21 10:57:47 +00:00
py2_reqs = parse_requirements("requirements-py2.txt")
2018-08-21 10:54:25 +00:00
test_reqs = parse_requirements("test-requirements.txt")
2016-01-14 20:41:14 +00:00
2016-09-15 11:56:17 +00:00
import sys
2018-03-19 13:36:05 +00:00
import os
2016-09-15 11:56:17 +00:00
import itertools
if sys.version_info <= (3, 0):
2018-08-21 10:57:47 +00:00
install_reqs = install_reqs + py2_reqs
2016-01-14 20:41:14 +00:00
2018-03-19 13:36:05 +00:00
with open(os.path.join('bitter', 'VERSION'), 'r') as f:
__version__ = f.read().strip()
2016-01-14 20:41:14 +00:00
setup(
name="bitter",
packages=['bitter'],
2016-09-27 23:05:13 +00:00
description=" Simplifying how researchers access Data. It includes a CLI and a library.",
2016-01-14 20:41:14 +00:00
author='J. Fernando Sanchez',
author_email='balkian@gmail.com',
url="http://balkian.com",
2016-09-15 11:56:17 +00:00
version=__version__,
2016-01-14 20:41:14 +00:00
install_requires=install_reqs,
tests_require=test_reqs,
2016-09-15 11:56:17 +00:00
extras_require = {
'server': ['flask', 'flask-oauthlib']
},
2016-12-06 00:30:32 +00:00
setup_requires=['pytest-runner',],
2016-01-14 20:41:14 +00:00
include_package_data=True,
entry_points="""
[console_scripts]
bitter=bitter.cli:main
""",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
]
2016-01-14 20:41:14 +00:00
)