-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
53 lines (48 loc) · 1.58 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
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
"""
setup.py file for GDWCalc.
@author: dthor
"""
### #------------------------------------------------------------------------
### Imports
### #------------------------------------------------------------------------
# Standard Library
from setuptools import setup, find_packages
import logging
# Third Party
# Package / Application
from gdwcalc import (__version__,
__project_url__,
__project_name__,
__description__,
__long_descr__,
)
# turn off logging if we're going to build a distribution
logging.disable(logging.CRITICAL)
setup(
name=__project_name__,
version=__version__,
description=__description__,
long_description=__long_descr__,
packages=find_packages(),
author="Douglas Thor",
url=__project_url__,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: MacOS X",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
],
requires=["wxPython",
"wafer_map"
],
)