Skip to content

Commit 1d4400b

Browse files
authored
Create setup.py
1 parent 3e77542 commit 1d4400b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

setup.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name='fgroup',
5+
version='1.0.0',
6+
py_modules=['fgroup'],
7+
description='A software tool for working with mathematical groups',
8+
author='Max Base',
9+
author_email='[email protected]',
10+
url='https://github.com/basemax/fgroup',
11+
classifiers=[
12+
'License :: OSI Approved :: MIT License',
13+
'Programming Language :: Python :: 3',
14+
'Programming Language :: Python :: 3.6',
15+
'Programming Language :: Python :: 3.7',
16+
'Programming Language :: Python :: 3.8',
17+
'Programming Language :: Python :: 3.9',
18+
],
19+
)

0 commit comments

Comments
 (0)