-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (36 loc) · 1.36 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
from os import path
from setuptools import setup, find_packages
# from Cython.Build import cythonize
# To compile: python setup.py build_ext --inplace
# create a source distribution and a wheel with python setup.py sdist bdist_wheel
# To upload to TestPyPi python -m twine upload --repository testpypi dist/*
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="supersolids",
version="0.1.33",
packages=find_packages(),
package_data={"supersolids": []},
url="https://github.com/Scheiermann/supersolids",
license="MIT",
author="Scheiermann",
author_email="[email protected]",
install_requires=["dill",
"ffmpeg-python",
"matplotlib",
"numpy",
"mayavi",
"psutil",
"pyqt5",
"scipy",
"sphinx-autoapi",
"sphinx-rtd-theme",
],
# ext_modules=cythonize("*.pyx", language_level=3),
python_requires=">=3.6",
description="Simulate and animate supersolids.",
long_description=long_description,
long_description_content_type="text/markdown"
)