Skip to content

Commit e27f26c

Browse files
committed
Created a setup.py file.
1 parent 9c23192 commit e27f26c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

setup.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(
6+
name='DarkSky',
7+
version='0.1',
8+
author='Ryan Larrabure',
9+
author_email='ryan@larrabure.org',
10+
url='http://www.github.com/ryan/DarkSky.py/',
11+
packages=['darksky', 'darksky.abstract_io'],
12+
package_dir= {'darksky': 'src/darksky'},
13+
install_requires=['requests']
14+
)
15+

0 commit comments

Comments
 (0)