-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (47 loc) · 1.66 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
49
50
51
52
#!/usr/bin/env python
import os
from setuptools import setup
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
version_fname = os.path.join(THIS_DIR, 'plato', 'version.py')
with open(version_fname) as version_file:
exec(version_file.read())
readme_fname = os.path.join(THIS_DIR, 'README.md')
with open(readme_fname) as readme_file:
long_description = readme_file.read()
setup(name='plato-draw',
author='Matthew Spellings',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Visualization'
],
description='Geometry and visualization tools for collections of particles',
extras_require={
'pyside': ['pyside', 'vispy >= 0.5.3'],
'pyside2': ['pyside2', 'vispy >= 0.6'],
'pythreejs': ['pythreejs'],
},
install_requires=['numpy', 'scipy', 'rowan'],
license='BSD-3-Clause',
long_description=long_description,
long_description_content_type='text/markdown',
packages=[
'plato', 'plato.draw',
'plato.draw.blender',
'plato.draw.fresnel',
'plato.draw.matplotlib',
'plato.draw.povray',
'plato.draw.pythreejs',
'plato.draw.vispy',
'plato.draw.zdog',
],
project_urls={
'Documentation': 'http://plato-draw.readthedocs.io/',
'Source': 'https://github.com/glotzerlab/plato'
},
python_requires='>=3',
version=__version__
)