-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (45 loc) · 1.67 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
from setuptools import setup
setup(
name = 'ngargparser',
version = '0.1.3',
license='MIT',
description = 'This is a standardized parser framework for CLI tools. This class will enforce certain properties or abstract methods to be implemented to properly create an Argument Parser class for other CLI tools.', # Give a short description about your library
author = 'Haeuk Kim',
author_email = '[email protected]',
url = 'https://github.com/IEDB/NGArgParser',
download_url = 'https://github.com/IEDB/NGArgParser/archive/refs/tags/v0.1.tar.gz',
keywords = ['iedb', 'nextgen', 'argumentparser', 'iedb tools'],
packages = [
'ngargparser',
'ngargparser.templates',
],
package_data = {
# Include everything inside the misc/ in the package.
'ngargparser.templates': ['**/*'],
},
include_package_data = True,
install_requires = ['ngargparser'],
entry_points = {
'console_scripts': [
'cli = ngargparser.cli:main',
],
},
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Define that your audience are developers
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
# Type of license
'License :: OSI Approved :: MIT License',
#Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)