-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (31 loc) · 1.1 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
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/*'],
'compass_metrics': ['resources/*'],
'compass_contributor': ['conf_utils/*']
},
python_requires='>=3.4',
setup_requires=['wheel'],
zip_safe=False
)