forked from ana-cc/monroe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (31 loc) · 1.06 KB
/
setup.py
File metadata and controls
40 lines (31 loc) · 1.06 KB
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
from setuptools import setup, find_packages
from codecs import open
from os import path
with open('VERSION') as version_file:
VERSION = version_file.read().strip()
setup(
name='monroe-lib',
version=VERSION,
description='MONROE scheduler Python library',
long_description='Python library for interacting with the MONROE scheduler',
url='https://github.com/ana-cc/monroe-lib',
author='Ana Custura',
author_email='ana@netstat.org.uk',
license='BSD 2-clause',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: MONROE Researchers',
'License :: OSI Approved :: BSD 2-clause License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
packages=find_packages(exclude=['docs', 'tests']),
install_requires = ['pyOpenSSL', 'pycryptodome', 'haikunator'],
entry_points={
'console_scripts': [
'monroe=monroe.cli:main',
],
},
)