-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·34 lines (32 loc) · 1.29 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
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='antitile',
version='20190401',
description='Tiling subdivision scripts, for use with Antiprism',
url='http://github.com/brsr/antitile',
author='B R S Recht',
author_email='[email protected]',
license='MIT',
packages=['antitile'],
keywords="""tiling tesselation subdivision geodesic grid goldberg
polyhedra sphere polyhedron geometry buckyball coxeter""",
install_requires=['numpy', 'scipy', 'matplotlib', 'pandas'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics :: 3D Modeling',
'Topic :: Scientific/Engineering :: Mathematics'
],
scripts = ['bin/view_off.py', 'bin/balloon.py', 'bin/breakdown.py',
'bin/gcostats.py', 'bin/cellular.py', 'bin/gcopoly.py',
'bin/factor.py', 'bin/nslerp.py'],
#data_files
include_package_data=True,
#zip_safe=True,
test_suite='tests')