-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.11 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
try:
from setuptools import setup
except ImportError:
print('`dc-sim` requires \'setuptools\' to continue installation.')
exit(1)
if __name__ == '__main__':
setup(
name = 'dc-sim',
version = '1.0.1',
description = 'Simulate popular Data Communication techniques.',
keywords = 'cli tool communication error detection transmission',
python_requires = '>=3.7',
license = 'MIT',
install_requires = [
'argparse',
],
packages = [
'dc_sim',
'dc_sim.modules',
],
entry_points = {
'console_scripts': [
'dc-sim = dc_sim.modules.app:main',
]
},
classifiers = [
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent',
],
)