-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (29 loc) · 1.06 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from os import path, listdir
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
def files(dirname):
return [path.join(dirname, filename) for filename in listdir(dirname)]
setup(
name="alto-unicorn",
version="0.1",
description="An unicorn as a platform of job placement scheduler",
url="https://github.com/openalto/alto-unicorn",
author="Y.Jace Liu, Jensen Zhang, Kai Gao",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Intented Audience :: Developers",
"Topic :: System :: Emulators",
],
license="MIT",
long_description=read("README.rst"),
packages=find_packages(),
package_data={"alto.unicorn": ["schema/*.yaml"]},
install_requires=read('requirements.txt').splitlines(),
scripts=files('bin'),
zip_safe=False
)