forked from jminardi/syncnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 826 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 826 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
requires = [
'python-bitcoinlib',
'atom',
'enaml',
'BTSync',
]
dependency_links=[
"https://github.com/petertodd/python-bitcoinlib/archive/pythonize.zip#egg=python-bitcoinlib",
"https://github.com/ademan/python-btsync/archive/packaging.zip#egg=BTSync",
]
setup(name='syncnet',
version='0.0.1',
description='Encrypted, distributed web.',
long_description=README,
classifiers=[
"Programming Language :: Python",
],
packages=find_packages(),
include_package_data=True,
install_requires=requires,
dependency_links=dependency_links,
)