-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 856 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
from setuptools import setup, find_packages
setup(
name = 'opencitations',
version = '0.3',
packages = find_packages(),
install_requires = [
"lxml",
"pyoai",
"python-dateutil",
"requests==1.1.0"
],
url = 'http://opencitations.wordpress.com',
author = 'Cottage Labs, Heinrich Hartmann, JISC Open Citations project',
author_email = '[email protected]',
description = 'toolkit for building and maintaining the Open Citations Corpus',
license = 'MIT',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: MIT',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)