-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (38 loc) · 1.18 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
import os
import sys
sys.path.append ('planetarium')
import __base__
from setuptools import setup
def read (*paths):
with open (os.path.join (*paths), 'r') as aFile:
return aFile.read()
setup (
name = 'Planetarium',
version = __base__.pl_version,
description = 'A Python / React planetarium in the brower, using Transcrypt and Pyact',
long_description = (
read ('README.rst') + '\n\n' +
read ('planetarium/license_reference.txt')
),
keywords = ['planetarium', 'transcrypt', 'pyact', 'numscrypt', 'react', 'python', 'browser'],
url = 'https://github.com/QQuick/Planetarium',
license = 'Apache 2.0',
author = 'Jacques de Hooge',
author_email = 'jacques.de.hooge@qquick.org',
packages = ['planetarium'],
install_requires = [
'transcrypt',
'pyact',
'numscrypt'
],
include_package_data = True,
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
],
)