-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
39 lines (35 loc) · 1.02 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
import codecs
import os
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
def local_file(file):
return codecs.open(
os.path.join(os.path.dirname(__file__), file), 'r', 'utf-8'
)
install_reqs = [
line.strip()
for line in local_file('requirements.txt').readlines()
if line.strip() != ''
]
setuptools.setup(
name="power-of-10",
version="0.0.1",
author="Yasser Qureshi",
author_email="[email protected]",
description="A UK athletics API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yasserqureshi1/power-of-10",
project_urls={
"Bug Tracker": "https://github.com/yasserqureshi1/power-of-10/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['power_of_10'],
python_requires=">=3.6",
install_requires=install_reqs
)