-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
import re
from setuptools import find_packages, setup
with open('isimip_validator/__init__.py') as f:
metadata = dict(re.findall(r'__(.*)__ = [\']([^\']*)[\']', f.read()))
setup(
name=metadata['title'],
version=metadata['version'],
author=metadata['author'],
author_email=metadata['email'],
maintainer=metadata['author'],
maintainer_email=metadata['email'],
license=metadata['license'],
url='https://github.com/ISI-MIP/isimip-validator',
description=u'',
long_description=open('README.md').read(),
install_requires=[
'jsonschema~=3.2',
'requests~=2.23',
'python-dotenv~=0.10'
],
classifiers=[
# https://pypi.org/classifiers/
'Development Status :: 1 - Planning',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'isimip-validator=isimip_validator.main:main',
]
}
)