-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (44 loc) · 1.97 KB
/
setup.py
File metadata and controls
56 lines (44 loc) · 1.97 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
50
51
52
53
54
55
56
"""A setuptools based setup module."""
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="bireyselvalue", # Required
version="2.1.0", # Required
description="TEST ON V.1 of THE BireyselValue Algorithm FOR CLASSIFICATION PROBLEMS", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional (see note above)
url="https://github.com/dahmansphi/bireyselvalue_v1", # Optional
author="Dr. Deniz Dahman's", # Optional
author_email="dahmansphi@gmail.com", # Optional
License = "GPL-3.0",
Requires = "None",
# Classifiers help users find your project by categorizing it.
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
# Pick your license as you wish
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
keywords="classification, bireyselvalue, machine learning", # Optional
package_dir={"": "src"}, # Optional
#
packages=find_packages(where="src"), # Required
python_requires=">=3.9",
# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
# installed, so they must be valid existing projects.
#
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/discussions/install-requires-vs-requirements/
# install_requires=["peppercorn"], # Optional
)