-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 917 Bytes
/
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
30
31
32
33
from setuptools import setup, find_packages
from oacensus.version import OACENSUS_VERSION
setup(
classifiers=[
"Development Status :: 4 - Beta"
],
description='Open Access census and reporting utilities.',
entry_points = {
'console_scripts' : [
'oacensus = oacensus.commands:run'
]
},
include_package_data = True,
install_requires = [
'BeautifulSoup4',
'PyYAML',
'cashew>=0.2.0',
'inflection',
'orcid-python',
'peewee>=2.0.0',
'pyoai>=2.4.4',
'python-dateutil',
'python-modargs>=1.7',
'requests>=2.0.0',
'xlrd',
'xlwt'
],
name='oacensus',
packages=find_packages(),
url='',
version=OACENSUS_VERSION
)