-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
42 lines (38 loc) · 1.33 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
from setuptools import find_packages, setup
setup(
name='euclid',
version='1.0.dev0',
py_modules=['euclid'],
setup_requires=[
'pytest-runner',
],
tests_require=[
'numpy',
'pytest',
],
author='Eugen Zagorodniy',
author_email='e.zagorodniy@gmail.com',
description='2D and 3D vector, matrix, quaternion and geometry module',
license='LGPLv2+',
keywords=['geometry'],
url='https://github.com/ezag/pyeuclid',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
('License :: OSI Approved :: '
'GNU Lesser General Public License v2 or later (LGPLv2+)'),
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)