-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (49 loc) · 1.49 KB
/
setup.py
File metadata and controls
58 lines (49 loc) · 1.49 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
"""
Setup script for ctip.
Created on Sat Jul 9 16:58:24 2016
@author: Aaron Beckett
"""
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('ctip/entrypoint.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name = "ctip",
version = version,
author = "Aaron Beckett",
author_email = "aminor65ii@gmail.com",
description = "Extendible configuration testing in parallel.",
long_description = long_descr,
license = "MIT",
url = "https://github.com/becketta/ctip.git",
packages = ["ctip"],
install_requires = [
'pyparsing'
],
entry_points = {
"console_scripts": ['ctip = ctip.entrypoint:main']
},
platforms = ["any"],
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Testing",
"Topic :: Utilities"
],
keywords = "config configuration test testing parallel research tool optimization"
)