-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (34 loc) · 1008 Bytes
/
setup.py
File metadata and controls
executable file
·41 lines (34 loc) · 1008 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
35
36
37
38
39
40
41
#!/usr/bin/env python
from setuptools import setup
import os.path
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setupconf = dict(
name='pundle',
version='0.9.2',
license='BSD',
url='https://github.com/Deepwalker/pundler/',
author='Deepwalker',
author_email='krivushinme@gmail.com',
description=('Requirements management tool.'),
long_description=read('README.rst'),
keywords='bundler virtualenv pip install package setuptools',
py_modules=['pundle'],
entry_points=dict(
console_scripts=[
'pundle = pundle:CmdRegister.main'
]
),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
)
if __name__ == '__main__':
setup(**setupconf)