-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 989 Bytes
/
setup.py
File metadata and controls
35 lines (30 loc) · 989 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
28
29
30
31
32
33
34
35
import sys
import os
from setuptools import setup, find_packages
src_path = os.path.dirname(os.path.abspath(sys.argv[0]))
old_path = os.getcwd()
os.chdir(src_path)
sys.path.insert(0, src_path)
kwargs = {
'name': 'epl.geometry',
'description': 'Echo Park Labs Geometry Client',
'long_description': open('README.md').read(),
'author': 'Echo Park Labs',
'author_email': 'david@echoparklabs.com',
'url': 'https://bitbucket.org/davidraleigh/geometry-client-python',
'version': open('VERSION').read(),
"namespace_package": ['epl'],
'packages': ['epl.geometry'],
'zip_safe': False
}
clssfrs = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
kwargs['classifiers'] = clssfrs
setup(**kwargs)