We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 28b762bCopy full SHA for 28b762b
setup.py
@@ -0,0 +1,12 @@
1
+from setuptools import setup, find_packages
2
+
3
+setup(
4
+ name = 'usergroup',
5
+ version = '1.0',
6
+ url = 'https://github.com/indypy/usergroup.git',
7
+ author = 'Calvin Hendryx-Parker',
8
+ author_email = 'calvin@indypy.org',
9
+ description = 'Make a user group',
10
+ packages = find_packages(),
11
+ install_requires = [],
12
+)
0 commit comments