forked from AIBauchi/PyDS-A
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 846 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 846 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
28
29
30
31
32
33
34
from setuptools import setup, find_packages
# Package metadata
NAME = "PyDS-A"
VERSION = "1.0.0"
DESCRIPTION = "A collection of data structures and algorithms in Python."
AUTHOR = "Tinny-Robot"
EMAIL = "handanfoun@gmail.com"
URL = "https://github.com/AIBauchi/PyDS-A"
LICENSE = "MIT"
CLASSIFIERS = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
]
# Package dependencies
INSTALL_REQUIRES = []
# Package setup
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
license=LICENSE,
classifiers=CLASSIFIERS,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
)