-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (26 loc) · 941 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
import codecs
import os
import re
# Always prefer setuptools over distutils
from setuptools import setup
setup(name="compass_metrics_model",
description="Metrics Model",
url="https://github.com/open-metrics-code/compass-metrics-model",
version="0.1.0",
author="Chenqi Shan, Yehui Wang",
author_email="[email protected]",
license="GPLv3",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'],
keywords="Metric Model",
packages=['compass_metrics_model'],
python_requires='>=3.4',
setup_requires=['wheel'],
zip_safe=False
)