-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.02 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='aligem',
version='1.1.0',
description='ALICE Grid Enviroment Manager',
long_description=readme(),
keywords='aligem ALICE CERN high energy physics',
url='http://github.com/vpacik/aligem',
author='Vojtech Pacik',
author_email='[email protected]',
license='GPL-3.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Natural Language :: English',
],
packages=['aligem'],
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
entry_points = {
'console_scripts': ['aligem=aligem.command_line:main'],
},
include_package_data=True,
zip_safe=False)