-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 loc) · 1.01 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
import setuptools
import os
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
f = open(path)
return f.read()
install_requires = [x for x in read('requirements.txt').strip().split('\n') if x]
setuptools.setup(
name='metareserve-GENI',
version='0.1.1',
author='Sebastiaan Alvarez Rodriguez',
author_email='[email protected]',
description='GENI Plugin for metareserve reservation system',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/Sebastiaan-Alvarez-Rodriguez/metareserve-GENI',
packages=setuptools.find_packages(),
package_dir={'': '.'},
classifiers=(
'Environment :: Console',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
),
install_requires=install_requires,
entry_points={
'console_scripts': [
'geni-reserve = metareserve_geni.cli.entrypoint:main',
],
},
)