-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (33 loc) · 1.29 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
from __future__ import with_statement
import sys
from setuptools import setup, find_packages
from cc_plugin_primavera import __version__
def readme():
with open('README.md') as f:
return f.read()
reqs = [line.strip() for line in open('requirements.txt')]
setup(name = "cc-plugin-primavera",
version = __version__,
description = "Compliance Checker PRIMAVERA plugin",
long_description = readme(),
license = 'BSD License',
author = "Jon Seddon",
author_email = "jon.seddon@metoffice.gov.uk",
url = "https://github.com/jonseddon/cc-plugin-primavera",
packages = find_packages(),
install_requires = reqs,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
entry_points = {
'compliance_checker.suites': [
'primavera = cc_plugin_primavera.primavera:PrimCheck',
]
}
)