-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (34 loc) · 1.12 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 setup, find_packages
setup( name='cameray',
install_requires=[
'networkx',
'taichi',
'numpy',
'dearpygui',
'dearpygui_ext'
],
setup_requires=[],
python_requires='>=3.6, <=3.9',
version='0.0.2',
author='Shuoliu Yang',
author_email='[email protected]',
url='https://github.com/yslib/Cameray',
package_dir={'':'src'},
packages=find_packages(where='src'),
entry_points={
'console_scripts':[
'cameray = gui.app:main'
]
},
classifiers = [
# https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.8',
]
)