-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 1.11 KB
/
setup.py
File metadata and controls
38 lines (32 loc) · 1.11 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
from setuptools import setup, find_packages
import io
# List all of your Python package dependencies in the
# requirements.txt file
def readfile(filename, split=False):
with io.open(filename, encoding="utf-8") as stream:
if split:
return stream.read().split("\n")
return stream.read()
readme = readfile("README.md", split=True)[3:] # skip title
requires = readfile("requirements.txt", split=True)
source_license = readfile("LICENSE")
setup(
name=u'mapclientplugins.pointwiserigidregistrationstep',
version='1.0.1',
description='',
long_description='\n'.join(readme) + source_license,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
],
author=u'Ju Zhang',
author_email='',
url='https://github.com/mapclient-plugins/pointwiserigidregistrationstep',
license='APACHE',
packages=find_packages(exclude=['ez_setup', ]),
namespace_packages=['mapclientplugins'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
)