-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 836 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
from setuptools import setup
import pypack
setup(
name='python-package-template',
version=pypack.__version__,
author='Gary Wilson Jr.',
author_email='[email protected]',
packages=['pypack'],
entry_points={
'console_scripts': [
'pypack = pypack.commands:pypack_command',
],
},
include_package_data = True,
url=pypack.__url__,
license='MIT',
description=("Provides a command to easily create a standard Python"
" package layout (i.e. package directory, README file,"
" setup.py, etc.)."),
long_description=open('README.rst').read(),
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)