-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
37 lines (32 loc) · 1.05 KB
/
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
35
36
37
# -*- coding: utf-8 -*-
"""Reloadr - Python library for hot code reloading
(c) 2015-2020 Hugo Herter
"""
import os
from setuptools import setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open('README.rst') as file:
long_description = file.read()
setup(name='Reloadr',
version='0.4.1',
description='Hot code reloading tool for Python',
long_description=long_description,
author='Hugo Herter',
author_email='[email protected]',
url='https://github.com/hoh/reloadr',
py_modules=['reloadr'],
scripts=['reloadr.py'],
data_files=[],
install_requires=[
'watchdog',
],
license='LGPLv3',
platform='any',
keywords="reload hot code reloading",
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Developers',
],
)