forked from radiasoft/pykern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.39 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
# -*- coding: utf-8 -*-
"""Install PyKern
:copyright: Copyright (c) 2015-2018 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""
from pykern.pksetup import setup
setup(
name='pykern',
description='Python application support',
author='RadiaSoft LLC',
author_email='[email protected]',
install_requires=[
'argh>=0.26',
'future>=0.14',
'github3.py>=1.1',
'jinja2>=2.7',
'psutil>=5.0',
'py-cpuinfo>=0.2',
'py>=1.4',
'pytest>=2.7',
'pytz>=2015.4',
'pyyaml>=3.0',
'requests>=2.18',
'setuptools>=20.3',
'six>=1.9',
'Sphinx>=1.3.5',
'twine>=1.9',
'tox>=1.9',
'path.py>=7.7.1',
'python-dateutil>=2.4.2',
],
license='http://www.apache.org/licenses/LICENSE-2.0.html',
url='http://pykern.org',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Utilities',
],
)