-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 727 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 727 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 = [
'atom',
'enaml',
'BTSync',
]
dependency_links=[
"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(),
package_data={
'syncnet': ['*.enaml'],
},
install_requires=requires,
dependency_links=dependency_links,
)