-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·48 lines (43 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
"""
setup.py PuPI setup project file
"""
__author__ = "Michael Montuori [[email protected]]"
__copyright__ = "Copyright 2017 Michael Montuori. All rights reserved."
__credits__ = []
__license__ = "GPLv3"
__version__ = "1.0"
__revision__ = "0"
import os
from setuptools import setup
from setuptools import find_packages
import sprinkle
with open('README.md', 'r') as fh:
long_description = fh.read()
this = os.path.dirname(os.path.realpath(__file__))
def read(name):
with open(os.path.join(this, name)) as f:
return f.read()
setup(
name='sprinkle-py',
version=sprinkle.__version__+'.'+sprinkle.__revision__,
#packages=find_packages(exclude=['contrib', 'docs', 'tests']),
packages=['libsprinkle'],
install_requires=read('requirements.txt'),
url='https://gitlab.com/mmontuori/sprinkle',
license='GPLv3',
include_package_data=True,
author='mmontuori',
author_email='[email protected]',
description='Sprinkle is a volume clustering utility based on [RClone](https://rclone.org).',
long_description=long_description,
keywords='sprinkle cloud backup restore',
zip_safe=True,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English'
],
scripts=['sprinkle.py']
)