-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name="shitcoin",
version="4.2.0",
author="Bartolomeə",
author_email="barton@bmorphism.xyz",
description="Changing the world, one DAO at a time.",
url="https://github.com/bmorphism/shitcoin",
project_urls={
"Bug Tracker": "https://github.com/bmorphism/shitcoin/issues",
},
license="The Unlicense",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Legal Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: Religion",
"Intended Audience :: Other Audience",
"Topic :: Internet",
"Topic :: Games/Entertainment :: Simulation",
"Development Status :: 3 - Alpha",
],
keywords="shitcoin, degen, blockchain, dao, cw20, ibc, defi, denom, permissionless, token, anarchy",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.6",
)