-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.06 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.06 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
from setuptools import setup, find_packages
VERSION = '2.0.6'
DESCRIPTION = 'Fetch results of various national examinations done in Tanzania'
LONG_DESCRIPTION = ""
with open('README.md') as rm:
LONG_DESCRIPTION = rm.read()
# Setting up
setup(
name="nectaapi",
version=VERSION,
author="Tanzania Programmers (Vincent Laizer)",
author_email="<laizercorp@gmail.com>",
url="https://github.com/vincent-laizer/NECTA-API",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[
'requests',
'beautifulsoup4'
],
keywords=['python', 'necta', 'api', 'necta api', 'necta tanzania', 'tanzania programmers'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)