Fixing the setup.py to add the requirements and ignoring distribution folders

This commit is contained in:
Mitsuo Takaki
2016-05-02 22:27:29 -07:00
parent acf77438f3
commit b5d87bef68
2 changed files with 8 additions and 0 deletions

2
.gitignore vendored
View File

@@ -8,3 +8,5 @@ share/
.cache .cache
.coverage .coverage
*.egg-info *.egg-info
MANIFEST
dist/

View File

@@ -8,4 +8,10 @@ setup(name='cachet-url-monitor',
author_email='mitsuotakaki@gmail.com', author_email='mitsuotakaki@gmail.com',
url='https://github.com/mtakaki/cachet-url-monitor', url='https://github.com/mtakaki/cachet-url-monitor',
packages=['cachet_url_monitor'], packages=['cachet_url_monitor'],
license='MIT',
requires=[
'requests',
'yaml',
'schedule',
]
) )