forked from adsabs/adsutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
from setuptools import setup
from pip.req import parse_requirements
# parse_requirements() returns generator of pip.req.InstallRequirement objects
install_reqs = parse_requirements('./requirements.txt')
reqs = [str(ir.req) for ir in install_reqs]
setup(
name = 'adsutils',
version = '0.1',
description = 'ADS utilties',
long_description = open('README.md').read(),
install_requires = reqs,
author = 'Edwin Henneken',
author_email = '[email protected]',
url = 'http://github.com/adsabs/adsutils',
packages = ['adsutils'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries' ]
)