-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1006 Bytes
/
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
import re
import setuptools
REQUIRED_PYTHON = (3, 6)
# Load requirements
REQUIREMENTS = 'requirements.txt'
REQUIREMENTS = [line.strip('\n') for line in open(REQUIREMENTS).readlines()]
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setuptools.setup(
name="pycon-ng2019",
version='1.0.0',
author='Domnan Diretnan, Mmadu Manasseh',
author_email="[email protected]",
description="Welcome to Pycon Nigeria 2019",
url="https://github.com/bisoncorps/pipelining-pycon-talk",
packages=setuptools.find_packages(),
install_requires=REQUIREMENTS,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="MIT",
keywords='\
pycon nigeria',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
python_requires='>={}.{}'.format(*REQUIRED_PYTHON),
)