-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 970 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
from distutils.core import setup
DISTNAME='module_name'
FULLVERSION='0.6.0'
setup(
name = DISTNAME,
packages = [DISTNAME],
version = FULLVERSION,
description = 'Simple Module to resolve module namespace',
author = 'Dale Jung',
author_email = 'dale@dalejung.com',
url = 'https://github.com/dalejung/module_name',
license = 'MIT',
download_url = 'https://github.com/dalejung/module_name/tarball/'+FULLVERSION,
entry_points={
'console_scripts': [
'py-module-name=module_name.cli:main',
]
},
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)