We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e77542 commit 1d4400bCopy full SHA for 1d4400b
setup.py
@@ -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