-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (26 loc) · 878 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
#!/usr/bin/env python3
import io
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = "None"
setup(
name="pyfuzzball",
version="1.3",
description="Package for working with MUCKs and MCP.",
long_description=long_description,
long_description_content_type='text/markdown',
author="HopeIslandCoder",
author_email="[email protected]",
python_requires=">=3.4.0",
url="https://github.com/tanabi/pyfuzzball",
packages=['pyfuzzball'],
include_package_data=True,
license='Public Domain'
)