forked from jparise/python-reloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (23 loc) · 887 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (23 loc) · 887 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = __import__('reloader').__version__
setup(
name = 'reloader',
version = version,
description = 'Dependency-based Python module reloader',
author = 'Jon Parise @ extended by aukobara@gmail.com',
author_email = 'jon@indelible.org',
license = "MIT License",
url = "https://github.com/aukobara/python-reloader",
download_url = 'https://github.com/jparise/python-reloader/tarball/' + version,
classifiers = ['Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python'],
py_modules = ['reloader'],
test_suite = 'tests',
)