-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (41 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (41 loc) · 1.16 KB
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
49
50
from setuptools import setup # type:ignore
def readme():
with open('README.md') as f:
return f.read()
setup(
name='BVersion',
version='0.9',
description='Centralised version control system for binary files',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: File Management :: File Synchronisation',
'Topic :: Software Development :: Version Control'
],
keywords='binary file version control',
url='https://github.com/robehickman/BVersion',
author='Robert Hickman',
author_email='robehickman@gmail.com',
license='MIT',
packages=[
'bversion',
'bversion.http',
'bversion.storage',
'bversion.backup'
],
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
'pysodium==0.7.0.post0',
'termcolor==1.1.0',
'typing_extensions'
],
scripts=[
'cli_tools/bvn',
'cli_tools/bvn_server',
'cli_tools/bvn_repo'
],
zip_safe=False
)