-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (74 loc) · 2.06 KB
/
setup.py
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
"""
setup.py
Helps in building the package with the project metadata
"""
import os
from setuptools import setup, find_packages
# locate where we are.
here = os.path.abspath(os.path.dirname(__file__))
# Reads in the readme file from ./humanfirst as the packaging description
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
VERSION = '2.1.0'
DESCRIPTION = 'HumanFirst Package Module'
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
# Setting up
setup(
name="humanfirst",
version=VERSION,
author="Mohammed Fayaz Ansar Jelani",
author_email="[email protected]",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
package_data={
'humanfirst': ['config/*.conf', 'config/*.cfg'],
},
# Libraries used in code
install_requires=[
'numpy',
'pandas',
'requests',
'requests-toolbelt',
'dataclasses',
'dataclasses-json',
'python-dotenv',
"PyJWT[crypto]"
],
keywords=['python', 'humanfirst', 'HumanFirst'],
classifiers=CLASSIFIERS,
url="https://humanfirst.ai", # Homepage URL
project_urls={
"Documentation": "https://docs.humanfirst.ai/docs/",
"Source": "https://github.com/zia-ai/humanfirst-module"
},
license='MIT',
python_requires=">=3.8",
extras_require={
"dev": [
"twine==5.1.1",
"wheel==0.41.2",
"keyring",
"keyrings.alt",
"pylint",
"git-pylint-commit-hook",
"numpy",
"pandas",
"requests",
"requests-toolbelt",
"autopep8",
"dataclasses",
"dataclasses-json",
"pytest",
"python-dotenv",
"pytest-cov",
"ntplib",
"PyJWT[crypto]"
]
}
)