-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.08 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
38
39
# Python imports
from setuptools import setup, find_packages
from distutils.util import convert_path
# Shared long description
with open('README.md', 'r') as oF:
long_description=oF.read()
# Shared version
with open(convert_path('pylivedev/version.py')) as oF:
d = {}
exec(oF.read(), d)
version = d['__version__']
setup(
name='pylivedev',
version=version,
description='PyLiveDev is used to keep track of files associated with your script so it can be re-started if any file is updated.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://ouroboroscoding.com/pylivedev',
project_urls={
'Source': 'https://github.com/ouroboroscoding/pylivedev',
'Tracker': 'https://github.com/ouroboroscoding/pylivedev/issues'
},
keywords=['python','live', 'development'],
author='Chris Nasr - OuroborosCoding',
author_email='[email protected]',
license='Apache-2.0',
packages=['pylivedev'],
install_requires=[
'termcolor>=1.1.0',
'watchdog>=2.1.2'
],
entry_points={
'console_scripts': ['pylivedev=pylivedev.__main__:cli']
},
zip_safe=True
)