-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
42 lines (40 loc) · 1.34 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
# -*- coding: utf-8 -*-
import site
import os.path
import glob
from setuptools import setup, find_packages
MODULE_NAME = "nanchi"
setup(
name= MODULE_NAME,
version='0.1.0',
description='Plotting with wxPython, NumPy and Matplotlib',
author='Pedro Jorge De Los Santos',
author_email='delossantosmfq@gmail.com',
license = "MIT",
keywords=["Plotting"],
install_requires=["matplotlib","numpy"], # Also required wxPython
url='https://github.com/JorgeDeLosSantos/NanchiPlot',
packages=find_packages(),
entry_points = {
'console_scripts': [
'nanchi=nanchi.app:run',
]
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Environment :: Win32 (MS Windows)",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Desktop Environment",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Multimedia :: Graphics",
"Topic :: Utilities",
],
package_data={"nanchi": ["img/*","help/*","¨data/*","styles/*"]}
)