-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
34 lines (30 loc) · 820 Bytes
/
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(*paths):
""" read files """
with open(os.path.join(*paths), 'r') as filename:
return filename.read()
setup(
name="pip-init",
version="0.3.0",
description="pip-init to generate a base setup.py file",
long_description=(read('README.rst')),
license='MIT',
author="JuanPablo AJ",
author_email="jpabloaj@gmail.com",
url="https://github.com/juanpabloaj/pip-init",
packages=['pip_init'],
test_suite="tests",
entry_points={
'console_scripts': [
'pip-init=pip_init:main',
],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
]
)