-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (47 loc) · 1.56 KB
/
setup.py
File metadata and controls
55 lines (47 loc) · 1.56 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
import sys
from setuptools import setup, find_packages
import codecs
import os
# Add the path to the directory containing the _information module to sys.path
sys.path.append(os.path.join(os.path.dirname(__file__), "analytixhero"))
from analytixhero._information import __version__, __desc__, __all__
VERSION = __version__
DESCRIPTION = __desc__
# Long Description From Readme.md
with open("README.md", "r") as ReadMeFile:
LONG_DESCRIPTION = ReadMeFile.read()
# Setting up
setup(
name="analytixhero",
version=VERSION,
author="Sahib Nanda",
author_email="<essenbeats@gmail.com>",
license='BSD',
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
url="https://github.com/thesahibnanda/AnalytiXHero",
project_urls={
'Documentation': 'https://github.com/thesahibnanda/AnalytiXHero/blob/main/DOCUMENTATION/0.%20Documentation%20Index.md',
'Source Code': 'https://github.com/thesahibnanda/AnalytiXHero',
},
packages=find_packages(),
install_requires=[
"numpy>=1.22.3",
"pandas>=2.0.0",
"scikit-learn>=1.0.0",
"scipy>=1.10.0",
"matplotlib>=3.5.0",
"seaborn>=0.11",
"python-dateutil>=2.8.0"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: BSD License"
]
)