forked from XiaoMi/galaxy-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 800 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 800 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def load_file(name):
with open(name) as fs:
content = fs.read().strip().strip('\n')
return content
README = load_file('README.md')
setup(
name='galaxy-sdk-python',
version="0.2.9",
author='Xiaomi Technology Co.',
author_email='heliangliang@xiaomi.com',
url='http://dev.mi.com',
description='Xiaomi Galaxy SDK for Python',
long_description=README,
packages=find_packages('lib'),
package_dir={'': 'lib'},
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
],
license='Apache License (2.0)',
)