-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 785 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 785 Bytes
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
from skbuild import setup
setup(
name="sort-tracker",
version="1.0.7",
description="SORT tracker",
author='M.Ali Zarrinzade',
author_email="ali.zarrinzadeh@gmail.com",
packages=['sort'],
install_requires = [
'numpy',
],
# python_requires=">=3.7",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="GPL-3.0",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
url="https://github.com/MrGolden1/sort-python",
project_urls={
"Bug Tracker": "https://github.com/MrGolden1/sort-python/issues",
},
)