-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 840 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 840 Bytes
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
from setuptools import setup
VERSION = '0.0.1'
BASE_CVS_URL = 'https://github.com/carmelom/mplarticle'
setup(
name='mpl_article_style',
packages=['mpl_article_style', ],
version=VERSION,
author='Carmelo Mordini',
author_email='carmelo.mordini@unitn.it',
install_requires=[x.strip() for x in open('requirements.txt').readlines()],
url=BASE_CVS_URL,
download_url='{}/tarball/{}'.format(BASE_CVS_URL, VERSION),
test_suite='tests',
tests_require=[x.strip() for x in open('requirements_test.txt').readlines()],
keywords=[],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
)