-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (34 loc) · 1.32 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='archaea-simulation',
packages=setuptools.find_packages(),
version='1.0.5',
license='Apache 2.0',
description='Wrapper definitions for simulation tools.',
long_description=long_description,
long_description_content_type="text/markdown",
readme='README.md',
author='Oğuzhan Koral',
author_email='[email protected]',
url='https://github.com/archaeans/archaea-simulation',
download_url='https://github.com/archaeans/archaea-simulation/archive/refs/tags/1.0.5.tar.gz',
keywords=['geometry', 'simulation'],
install_requires=[
'archaea'
],
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
# Pick your license as you wish
'License :: OSI Approved :: Apache Software License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
],
)