forked from georgyangelov/pyrsync
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (38 loc) · 1.41 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
import os
from sys import version
#from distutils.core import setup
from setuptools import setup
# Utility function to read the README.md file from main directory, used for
# the long_description.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pyzsync',
version='0.2',
description='''A Python 3 module which implements the zsync binary
diff algorithm.''',
#long_description=read('README'),
author='Francisco Silveira, Georgy Angelov, Eric Pruitt, Isis Lovecruft',
author_email='franciscosilveira463@gmail.com',
url='https://github.com/FranciscoSilveira/pyzsync',
py_modules=['pyzsync'],
license=['Unlicense'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: Public Domain',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Archiving :: Compression', ],
packages=['pyzsync'],
package_dir={'pyzsync': ''},
package_data={'': ['README\.md']},
python_requires='>=3'
)