-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 884 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='Pituophis',
version='1.2',
install_requires=['natsort'],
packages=['pituophis'],
url='https://github.com/dotcomboom/Pituophis',
license='BSD 2-Clause License',
author='dotcomboom',
author_email='[email protected]',
description='Gopher client and server module for Python 3',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
],
)