-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.02 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.02 KB
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
from setuptools import setup
setup( \
name='blendplot',
version='1.0.0',
description='A program for plotting 3D scatter plots for use in Blender',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/ExcaliburZero/blender-astro-visualization',
author='Christopher Wells',
author_email='cwellsny@nycap.rr.com',
license='MIT',
packages=['blendplot'],
install_requires=[
'pyCLI',
'scikit-learn',
'scipy',
'pandas'
],
include_package_data=True,
package_data={
'': ['LICENSE']
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License'
],
entry_points = {
'console_scripts': [
'blendplot = blendplot.__main__:run',
],
},
)