-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (47 loc) · 1.57 KB
/
setup.py
File metadata and controls
49 lines (47 loc) · 1.57 KB
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
from setuptools import find_packages, setup
source_code_url = 'https://github.com/usnistgov/simprocesd'
with open('README.md', 'r') as f:
long_description = f.read().split('\n')
long_description = '\n'.join(long_description[:10])
long_description = long_description + \
f'\nSee the project\'s [GitHub page]({source_code_url}) for more information.'
setup(
name = 'simprocesd',
version = '0.3.0',
author = 'Serghei Drozdov',
author_email = 'serghei.drozdov@nist.gov',
description = 'Discrete event simulator for manufacturing systems.',
long_description = long_description,
long_description_content_type = 'text/markdown',
project_urls = {
'Source Code': source_code_url
},
license = 'US Government Open Source',
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
packages = find_packages(exclude = [
'simprocesd.tests',
'simprocesd.tests.*'
]),
python_requires = ">=3.7",
install_requires = [
'dill',
'matplotlib >= 3.5',
'numpy >= 1.21'
],
extras_require = {
"examples": [
'scipy >= 1.7'
],
},
)