forked from the0demiurge/ShadowSocksShare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (25 loc) · 853 Bytes
/
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
#!/usr/bin/env python
# -*- utf-8 -*-
from setuptools import setup
requirements = list()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
dependencies = list()
with open('dependencies.txt') as f:
requirements = f.read().splitlines()
readme = 'ShadowSocksShare'
setup(name='ShadowSocks-share',
# PEP 440 -- Version Identification and Dependency Specification
version='0.0.1',
# Project description
description='share free ss',
long_description=readme,
# Author details
author='Charles Xu',
author_email='[email protected]',
# Project details
url='https://github.com/the0demiurge/Python-Scripts/tree/master/src/Web/Flask/ShadowSocksShare',
# Project dependencies
dependency_links=dependencies,
install_requires=requirements,
)