-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
36 lines (29 loc) · 1014 Bytes
/
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Setuptools based setup script for Mathics.
For the easiest installation just type the following command (you'll probably
need root privileges):
pip install -e .
This will install the library in the default location. For instructions on
how to customize the install procedure read the output of:
python setup.py --help install
"""
from setuptools import setup, find_packages
setup(
name="mathicsscript",
packages=find_packages(),
include_package_data=True,
package_data={
"": [
"mathicsscript/data/inputrc-no-unicode",
"mathicsscript/data/inputrc-unicode",
"mathicsscript/user-settings.m",
"mathicsscript/autoload/settings.m",
"mathicsscript/config.asy",
]
},
long_description_content_type="text/x-rst",
# don't pack Mathics in egg because of media files, etc.
zip_safe=False,
# TODO: could also include long_description, download_url,
)