-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (33 loc) · 840 Bytes
/
setup.py
File metadata and controls
42 lines (33 loc) · 840 Bytes
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
setup(
# Application name:
name="Grapher",
# Version number (initial):
version="0.1.0",
# Application author details:
author="Akshay Gupta",
author_email="akshaysngupta@gamil.com",
# Packages
packages=["Grapher"],
# Include additional files into the package
include_package_data=True,
# Details
url="http://pypi.python.org/pypi/Grapher/",
#
# license="LICENSE.txt",
description="Useful towel-related stuff.",
# long_description=open("README.txt").read(),
# Dependent packages (distributions)
install_requires=[
"pytesseract",
"matplotlib",
"scipy",
"numpy",
"wxpython",
],
entry_points={
'console_scripts': [
'grapher = Grapher.run:main',
],
},
)