-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (56 loc) · 1.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
from setuptools import setup, find_packages
# Package meta-data.
NAME = 'geoscad'
DESCRIPTION = 'Geometry Tools for SolidPython wrapping for OpenSCAD.'
AUTHOR = 'William Mills'
EMAIL = ''
URL = 'https://github.com/orwonthe/geoscad.git'
VERSION = '0.1.2'
REQUIRED = [
'attrs==17.4.0',
'euclid3==0.1',
'more-itertools==4.1.0',
'numpy==1.14.2',
'pluggy==0.6.0',
'prettytable==0.7.2',
'py==1.5.3',
'pypng==0.0.18',
'pytest==3.5.0',
'six==1.11.0',
'solidpython==0.2.0',
]
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
our_packages = find_packages(include=['geoscad'])
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
author=AUTHOR,
author_email=EMAIL,
url=URL,
packages=our_packages,
install_requires=REQUIRED,
include_package_data=True,
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
],
entry_points={
'console_scripts': [
# 'script_name = somefile.main:somefile_main',
]
}
# $ setup.py publish support.
# cmdclass={
# 'upload': UploadCommand,
# },
)