This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
forked from sinhrks/cesiumpy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·74 lines (56 loc) · 2.17 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding: utf-8 -*-
#!/usr/bin/env python
######################################################################################################################################################
# @project CesiumPy
# @file setup.py
# @license Apache 2.0
######################################################################################################################################################
import codecs
import os
import sys
from setuptools import setup, find_packages
######################################################################################################################################################
PACKAGE = "cesiumpy"
README = "README.md"
REQUIREMENTS = "requirements.txt"
VERSION = "0.4.0.dev"
######################################################################################################################################################
def read(fname):
# file must be read as utf-8 in py3 to avoid to be bytes
return codecs.open(
os.path.join(os.path.dirname(__file__), fname), encoding="utf-8"
).read()
def write_version_py(filename=None):
cnt = """\
version = '%s'
"""
a = open(filename, "w")
try:
a.write(cnt % VERSION)
finally:
a.close()
version_file = os.path.join(os.path.dirname(__file__), PACKAGE, "version.py")
write_version_py(filename=version_file)
install_requires = list(read(REQUIREMENTS).splitlines())
if sys.version_info < (3, 4, 0):
install_requires.append("enum34")
setup(
name=PACKAGE,
version=VERSION,
description="python wrapper of cesium.js for 3D geospatial visualization",
long_description=read(README),
author="sinhrks",
author_email="sinhrks@gmail.com",
url="http://cesiumpy.readthedocs.org/en/stable",
license="Apache 2.0",
packages=find_packages(),
package_data={
"cesiumpy.data": [
"countries/*.json",
"countries/data/*.json",
"countries/data/*.svg",
]
},
install_requires=install_requires,
)
######################################################################################################################################################