-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (34 loc) · 968 Bytes
/
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
#!usr/bin/env python
# -*- coding: utf-8 -*-
# Filename: setup.py
"""
peeemtee setup script.
"""
from setuptools import setup, find_packages
PACKAGE_NAME = 'peeemtee'
URL = 'https://github.com/JonasReubelt/PeeEmTee'
DESCRIPTION = 'Auxiliary package for PMT analyses'
__author__ = 'Jonas Reubelt'
__email__ = '[email protected]'
with open('requirements.txt') as fobj:
REQUIREMENTS = [l.strip() for l in fobj.readlines()]
setup(
name=PACKAGE_NAME,
url=URL,
description=DESCRIPTION,
author=__author__,
author_email=__email__,
packages=find_packages(),
include_package_data=True,
platforms='any',
setup_requires=['setuptools_scm'],
use_scm_version=True,
install_requires=REQUIREMENTS,
python_requires='>=2.7',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
],
)