-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·66 lines (56 loc) · 2.04 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
Author: Bradley Gram-Hansen
Time created: 12:41
Date created: 09/11/2017
License: MIT
'''
from os.path import realpath, dirname, join
from setuptools import setup, find_packages
import sys
DISTNAME = 'pyfo'
DESCRIPTION = "Python for FOPPL"
LONG_DESCRIPTION = open('README.md').read()
MAINTAINER = 'Bradley Gram-hansen, Tobias Kohn'
MAINTAINER_EMAIL = '[email protected], [email protected] '
AUTHOR = 'Bradley Gram-Hansen, Tobias Kohn'
AUTHOR_EMAIL = '[email protected], [email protected] '
URL = "http://github.com/bradleygramhansen/pyfo"
LICENSE = 'LICENSE.txt'
VERSION = "0.1.0"
PACKAGES = ['pyfo', 'pyfoppl']
classifiers = ['Development Status :: 1 - Production/UnStable',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: OS Independent']
PROJECT_ROOT = dirname(realpath(__file__))
REQUIREMENTS_FILE = join(PROJECT_ROOT, 'requirements.txt')
with open(REQUIREMENTS_FILE) as f:
install_reqs = f.read().splitlines()
if sys.version_info < (3, 4):
install_reqs.append('enum34')
# test_reqs = ['pytest', 'pytest-cov']
# if sys.version_info[0] == 2: # py3 has mock in stdlib
# test_reqs.append('mock')
if __name__ == "__main__":
setup(name=DISTNAME,
version=VERSION,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
package_data={'docs': ['*']},
include_package_data=True,
classifiers=classifiers,
install_requires=install_reqs)
#
# tests_require=test_reqs,
# test_suite='nose.collector')