-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 699 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 699 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
from setuptools import setup
def readme():
'''This is necessary to tell setuptools to include
the README.rst file when generating source distributions'''
with open('README.rst') as f:
return f.read()
setup(name='pySwirl',
version='0.1',
description='Learn Python, in Python',
url='https://github.com/danilito19/pySwirl',
author='Dani Litovsky Alcala',
author_email='danalitovsky@gmail.com',
license='MIT',
packages=['pySwirl'],
#specify which packages we need to install as dependencies
# install_requires=[
# 'markdown',
# ],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)