-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·38 lines (30 loc) · 1.32 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
from setuptools import setup, find_packages
setup(
# Application name:
name="GEstimator",
# Version number (initial):
version="2.5",
# Application author details:
author="Manu Varkey",
author_email="manuvarkey@gmail.com",
# Packages
packages = ['estimator', 'estimator.data', 'estimator.view'],
include_package_data = True, # Include additional files into the package
# Details
maintainer="Manu Varkey",
maintainer_email="manuvarkey@gmail.com",
url="https://github.com/manuvarkey/GEstimator",
license="GPL-3.0",
description="GEstimator is a simple civil estimation software written in Python and GTK+",
long_description= 'GEstimator is a simple civil estimation software written in Python and GTK+. GEstimator can prepare estimates along with rate analysis and supports multiple databases.',
install_requires=["appdirs", "openpyxl", "peewee", "pycairo", "PyGObject"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Office/Business',
],
)