-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 812 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
from distutils.core import setup
setup(
name = 'gofast',
packages = ['gofast'], # this must be the same as the name above
version = '0.4',
description = 'A javascript style promises for python that uses multicore and threads combined. Go Fast',
author = 'Greg McGregor',
author_email = 'greg@brightappsllc.com',
url = 'https://github.com/gregmcgregor/python-promises', # use the URL to the github repo
download_url = 'https://github.com/gregmcgregor/python-promises/archive/master.zip', # I'll explain this in a second
keywords = ['multicore', 'threads', 'futures', 'promise', 'mixmatch'], # arbitrary keywords
classifiers = [],
)