-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.68 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
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
repo_base_dir = os.path.abspath(os.path.dirname(__file__))
# pull in the packages metadata
package_about = {}
with open(os.path.join(repo_base_dir, "cobald_demo", "__about__.py")) as about_file:
exec(about_file.read(), package_about)
with open(os.path.join(repo_base_dir, 'README.rst'), 'r') as README:
long_description = README.read()
if __name__ == '__main__':
setup(
name=package_about['__title__'],
version=package_about['__version__'],
description=package_about['__summary__'],
long_description=long_description.strip(),
author=package_about['__author__'],
author_email=package_about['__email__'],
url=package_about['__url__'],
packages=find_packages(),
# dependencies
install_requires=[
'cobald>=0.9.2',
'psutil',
],
# metadata for package search
license='MIT',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Topic :: Adaptive Technologies',
'Topic :: Office/Business :: Scheduling',
'Topic :: System :: Distributed Computing',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=package_about['__keywords__'],
)