forked from vincent-laizer/NECTA-API
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.01 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.01 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
from setuptools import setup, find_packages
VERSION = '2.0.3'
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=[],
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",
]
)