forked from oss-compass/compass-metrics-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1010 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
import codecs
import os
import re
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
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=find_packages(),
package_data={'compass_metrics_model': ['resources/*']},\
python_requires='>=3.4',
setup_requires=['wheel'],
zip_safe=False
)