-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 1.13 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
from distutils.core import setup
import sys
from commonsens import __version__
setup(name='gammasens',
version=str(__version__),
author='Karl Kosack',
author_email='[email protected]',
# url='',
# download_url='',
description='Python-based Sensitivity calculator for High-Energy Gamma-Ray telescopes',
long_description='',
packages=['commonsens'],
keywords='IACT gamma sensitivity',
license='GPLv3'
# license='',
# classifiers=['Development Status :: 5 - Production/Stable',
# 'Intended Audience :: Developers',
# 'Natural Language :: English',
# 'Operating System :: OS Independent',
# 'Programming Language :: Python :: 2',
# 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
# 'License :: OSI Approved :: GNU Affero General Public License v3',
# 'Topic :: Internet',
# 'Topic :: Internet :: WWW/HTTP',
# 'Topic :: Scientific/Engineering :: GIS',
# ],
)