Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup.py #12

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 15 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from setuptools import setup

version = "0.5.3"
name = 'amuse-masc'
author = 'Steven Rieder'
author_email = '[email protected]'
name = "amuse-masc"
author = "Steven Rieder"
author_email = "[email protected]"
license_ = "MIT"
url = 'http://amusecode.org'
url = "http://amusecode.org"

classifiers = [
# Python versions supported by amuse-masc
Expand All @@ -14,25 +13,21 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",

# License
"License :: OSI Approved :: MIT License",

# OS support
"Operating System :: OS Independent",

# Maturity of amuse_masc
"Development Status :: 4 - Beta",

# Intended audience
"Intended Audience :: Science/Research",
]

install_requires = [
'wheel>=0.32',
'amuse-framework>=13.0.0',
"wheel>=0.32",
"amuse-framework>=2021.3.0",
]
description = 'Make a star cluster'
description = "Make a star cluster"
with open("README.md", "r") as fh:
long_description = fh.read()
long_description_content_type = "text/markdown"
Expand All @@ -41,18 +36,18 @@

all_data_files = []

packages = ['amuse.ext.masc']
packages = ["amuse.ext.masc"]

package_dir = {
'amuse.ext.masc': 'src/amuse/ext/masc'
}
package_dir = {"amuse.ext.masc": "src/amuse/ext/masc"}

package_data = {
}
package_data = {}

setup(
name=name,
version=version,
use_scm_version={
"write_to": "src/amuse/ext/masc/version.py",
},
setup_requires=["setuptools_scm"],
classifiers=classifiers,
url=url,
author_email=author_email,
Expand All @@ -67,6 +62,6 @@
packages=packages,
package_data=package_data,
data_files=all_data_files,
python_requires='>=3.5, <4',
python_requires=">=3.5, <4",
scripts=["masc.py"],
)