-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (57 loc) · 1.51 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#
# SetupTools script for GDE
#
# This file is part of GDE.
# See https://github.com/MichaelClerx/gde for sharing, and licensing details.
#
from setuptools import setup, find_packages
# Get version number
import os
import sys
sys.path.append(os.path.abspath('gde'))
from _gde_version import __version__ as version # noqa
sys.path.pop()
del(os, sys)
# Load text for description
with open('README.md') as f:
readme = f.read()
# Go!
setup(
# Module name (lowercase)
name='gde',
# Version
version=version,
# Description
description='Graph Data Exctractor (GDE)',
long_description=readme,
long_description_content_type='text/markdown',
# License
license='BSD 3-clause license',
author='Michael Clerx',
author_email='[email protected]',
# Required Python version
python_requires='>=3.6',
# Packages to include
packages=find_packages(include=('gde', 'gde.*')),
# Register as a shell script
entry_points={
'console_scripts': ['gde = gde.__main__:main']
},
# List of dependencies
install_requires=[
'configparser',
'numpy',
'pyqt6',
'setuptools',
'sip',
],
# Classifiers for pypi
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
)