-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (41 loc) · 1.43 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from distutils.core import Extension
import os
version_path = os.path.join('mpl_toolkits', 'clifford', '_version.py')
exec(open(version_path).read())
this_directory = os.path.dirname(__file__)
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mpl_toolkits.clifford',
version=__version__,
license='MIT',
description='Matplotlib tools for clifford',
long_description=long_description,
long_description_content_type='text/markdown',
author='Eric Wieser',
packages=find_packages(),
namespace_packages=['mpl_toolkits'],
install_requires=[
'clifford',
'matplotlib',
'trimesh',
],
package_dir={'mpl_toolkits': 'mpl_toolkits'},
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'Framework :: Matplotlib',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
project_urls={
"Bug Tracker": "https://github.com/pygae/mpl_toolkits.clifford/issues",
"Source Code": "https://github.com/pygae/mpl_toolkits.clifford",
},
python_requires='>=3.5',
)