-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (24 loc) · 870 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='altmetric',
version='1.0',
description='Altmetric API v1 wrapper for Python.',
long_description=open('README.rst').read(),
author='Lars Holm Nielsen',
url='https://github.com/lnielsen-cern/python-altmetric',
packages=['altmetric'],
download_url='http://pypi.python.org/pypi/altmetric/',
keywords='altmetric api wrapper export',
zip_safe=True,
install_requires=['simplejson', 'requests'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)