forked from elifesciences/elife-crossref-xml-generation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 849 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
from setuptools import setup
import elifecrossref
with open('README.rst') as fp:
README = fp.read()
setup(
name='elifecrossref',
version=elifecrossref.__version__,
description='eLife Crossref deposit of journal articles.',
long_description=README,
packages=['elifecrossref'],
license='MIT',
install_requires=[
"elifetools",
"elifearticle",
"GitPython",
"configparser",
"requests"
],
url='https://github.com/elifesciences/elife-crossref-xml-generation',
maintainer='eLife Sciences Publications Ltd.',
maintainer_email='[email protected]',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
)