-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
import codecs
import os
import sys
import sf
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'),'r',encoding="utf-8") as f:
long_description = f.read()
setup(
name = "sf-sdk",
version = sf.__version__,
description = "Shunfeng Express Python SDK",
long_description = long_description,
long_description_content_type = "text/markdown",
classifiers =
[
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
],
keywords = "sf sdk",
author = "blackcat",
author_email = "[email protected]",
url ="https://github.com/block-cat/sf-sdk",
license = "GNU",
packages = find_packages(),
include_package_data= True,
install_requires=[
'requests',
],
setup_requires=[
'requests',
],
zip_safe= True,
)