-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 821 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 821 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
25
26
27
28
29
30
31
32
33
34
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as file_handle:
return file_handle.read()
setup(
name = "genignore",
version = "0.5.7",
url="https://pypi.python.org/pypi/genignore",
packages = find_packages(),
author="Panos Kountanis",
author_email="panosktn@gmail.com",
description="Generate gitignore files based on templates provided by github",
long_description=read("README.rst"),
entry_points = {
'console_scripts': [
'genignore = genignore.main:main_func'
]
},
install_requires = [
'requests>=2.3.0',
'clint>=0.3.7',
'six>=1.8.0'
],
setup_requires = [
'nose>=1.0',
'mock',
'twine'
]
)