-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 736 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 736 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
26
27
import os
import sys
from distutils.core import setup
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
# Grab the version information
exec(open('cleveland/version.py').read())
if sys.version_info >= (3, 4):
install_requires = []
else:
install_requires = ['asyncio']
setup(name='cleveland',
version=__version__,
author='John Biesnecker',
author_email='jbiesnecker@gmail.com',
url='https://github.com/biesnecker/cleveland',
packages=['cleveland'],
package_dir={'cleveland': './cleveland'},
install_requires=install_requires,
description='Simple asyncio-based actors.',
license='mit',
long_description=read('README.txt')
)