-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (16 loc) · 532 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (16 loc) · 532 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
from setuptools import setup
DESC = open('README.md').read()
setup(name='fanfou_sdk',
version='0.0.3',
description='Fanfou SDK for Python',
author='LitoMore',
author_email='litomore@gmail.com',
url='https://github.com/LitoMore/fanfou-sdk-python',
packages=['fanfou_sdk'],
install_requires=['six', 'requests'],
long_description=DESC,
long_description_content_type='text/markdown',
license='MIT',
platforms=['any'],
keywords='fanfou')