-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (19 loc) · 821 Bytes
/
setup.py
File metadata and controls
27 lines (19 loc) · 821 Bytes
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
#!/usr/bin/env python
import os
from setuptools import setup
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
def read(fname):
return open(os.path.join(ROOT_DIR, fname)).read()
with open('requirements.txt') as reqs:
requirements = [line.strip().split("==")[0] for line in reqs.readlines()]
setup(name='orco',
version="0.6.1",
description='Organized Computing',
author='Stanislav Bohm',
url='http://github.com/spirali/orco',
packages=["orco", "orco.internals", "orco.ext"],
install_requires=requirements,
package_data={'orco': ['static/*.gz', "static/js/*.gz", "static/css/*.gz"]},
classifiers=("Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"))