-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
87 lines (78 loc) · 2.44 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Copyright (c) 2019, Danish Technological Institute.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# -*- coding: utf-8 -*-
import io
from setuptools import setup
from tracker import __version__
version = __version__
with io.open('README.md', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
"""
with io.open('requirements.txt') as requirements_file:
requirements = requirements_file.read().splitlines()
"""
requirements = [
'click>=7.0',
'cookiecutter>=1.4.0',
'ruamel.yaml',
'sh',
'uuid',
# 'astor>=0.8.0',
# 'werkzeug>=0.15.6',
'daemonize',
'psutil>=5.6.3',
'tabview>=1.4.3',
]
setup(
name='tracker',
version=version,
description=('A command-line utility that creates projects from project '
'templates, e.g. creating a Python package project from a '
'Python package project template.'),
long_description=readme,
author='Nicolai Anton Lynnerup',
author_email='nily@dti.dk',
url='https://github.com/dti-research/tracker',
packages=[
'tracker',
],
package_dir={'tracker': 'tracker'},
entry_points={
'console_scripts': [
'tracker = tracker.main:main',
]
},
include_package_data=True,
python_requires='>=3.6.*',
install_requires=requirements,
license='BSD',
zip_safe=False,
classifiers=[
'Development Status :: 2 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development',
],
keywords=(
'tracker, Python, projects, project templates, experiments, '
'project directory, setup.py, package, statistics, '
'packaging'
),
)
# 'Development Status :: 1 - Planning'
# 'Development Status :: 2 - Pre-Alpha'
# 'Development Status :: 3 - Alpha'
# 'Development Status :: 4 - Beta'
# 'Development Status :: 5 - Production/Stable'
# 'Development Status :: 6 - Mature'
# 'Development Status :: 7 - Inactive'