forked from jonathaneunice/MultiString
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 853 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 853 Bytes
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
from setuptools import setup, find_packages
readme = "See documentation at github.com/tomthorogood/MultiString"
try:
with open("README.md") as readme_md:
readme = readme_md.read()
except IOError:
try:
with open("README.rst") as readme_rst:
readme = readme_rst.read()
except IOError:
pass
setup(
name = "MultiString",
version = "0.1.5c",
description="MultiString is a class that allows strings to take on different meanings depending on their context.",
long_description = readme,
author="Tom A. Thorogood",
author_email="tom@tomthorogood.com",
license="GPLv3",
url = "http://www.github.com/tomthorogood/MultiString",
test_suite = 'test',
packages = find_packages(exclude=['setup.py','test']),
zip_safe = True
)