-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
38 lines (35 loc) · 1.24 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# get our version but don't import it
# or we'll need our dependencies already installed
# https://github.com/todddeluca/happybase/commit/63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9
with open('pyrr/version.py', 'r') as f:
exec(f.read())
setup(
name='pyrr',
version=__version__,
description='3D mathematical functions using NumPy',
license='BSD',
author='Adam Griffiths',
url='https://github.com/adamlwgriffiths/Pyrr',
install_requires=['numpy', 'multipledispatch'],
platforms=['any'],
test_suite='tests',
packages=['pyrr', 'pyrr.objects'],
classifiers=[
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)