-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (44 loc) · 1.5 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
# -*- coding: utf-8 -*-
import site
import os
import glob
from setuptools import setup, find_packages
# For versioning
dir_setup = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(dir_setup, 'wxtruss', 'version.py')) as f:
# Defines __version__
exec(f.read())
setup(
name= "wxtruss",
version = __version__,
description='A simple Python application for 2D-Truss analysis.',
author='Pedro Jorge De Los Santos',
author_email='[email protected]',
license = "MIT",
keywords=["Truss","FEA"],
install_requires=["matplotlib","numpy","wxpython","pandas","nusa"],
url='https://github.com/JorgeDeLosSantos/wxtruss',
packages=["wxtruss",],#find_packages(),
entry_points = {
'console_scripts': [
'wxtruss=wxtruss.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={"wxtruss": ["img/*","data/*"]}
)