-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
33 lines (31 loc) · 1.2 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='antitile',
version='20170414',
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""",
install_requires=['numpy', 'scipy', 'matplotlib'],
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/sgs.py',
'bin/sgsstats.py', 'bin/cellular.py'],
#data_files
include_package_data=True,
#zip_safe=True,
test_suite='tests')