-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.34 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
import os
import sys
#try:
# from setuptools import setup
#except ImportError:
from distutils.core import setup
source_path = os.path.abspath("pamutils")
sys.path.append(source_path)
import pamutils
packages = ["pamutils"]
requires = []
with open("README") as f:
readme = f.read()
#with open("LICENSE") as f:
# license = f.read()
setup(
name="pamutils",
version=pamutils.__version__,
description="A package with some helpful functions to process the data generated by PAM",
long_description=readme,
author="Martin Pyka, Sebastian Klatt",
author_email="[email protected]",
url="https://github.com/MartinPyka/Pam-Utils",
packages=packages,
#package_data={"pamutils": ["LICENSE"]},
include_package_data=True,
install_requires=requires,
license="GPL v2",
zip_safe=False,
classifiers=(
# TODO: some classifiers could be added
# TODO: full list is available at:
# TODO: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
),
)