-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (39 loc) · 1.17 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import os
import sys
from setuptools import setup, find_packages
import easydojo
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='easydojo',
version=easydojo.__version__,
author='Fábio Cerqueira',
author_email='[email protected]',
maintainer="Fábio Cerqueira",
maintainer_email="[email protected]",
url='http://github.com/fabiocerqueira/easydojo',
install_requires=[
'clint>=0.3',
'docopt>=0.6',
'watchdog>=0.6',
'PyYAML>=3.10',
],
description = 'Simple tools developed to help in Coding Dojo sessions',
long_description=open('README.rst').read(),
packages=find_packages(),
include_package_data=True,
package_data={'': ['LICENSE']},
license=open('LICENSE').read(),
scripts=['easy_dojo'],
classifiers=[
"Environment :: Console",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
"License :: OSI Approved :: Apache Software License",
],
)