forked from the0demiurge/ShadowSocksShare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (31 loc) · 1.01 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
#!/usr/bin/env python
# -*- coding: 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 = '\n'.join(open('README.md').readlines())
setup(
name='ssshare',
version='1.1.2',
# Project description
description='Crawl ShadowSocksR(SSR) accounts, sharing them on the web, and supporting subscription.',
long_description=readme,
long_description_content_type="text/markdown",
# Author details
author='Charles Xu',
author_email='[email protected]',
# Project details
url='https://github.com/the0demiurge/ShadowSocksShare',
# Project dependencies
dependency_links=dependencies,
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
],
)