Skip to content

Commit e6814ee

Browse files
Create setup.py
1 parent 4b82edc commit e6814ee

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'pyweakref',
4+
packages = ['pyweakref'],
5+
version = '0.1',
6+
license='MIT',
7+
description = 'Pure Python implementation of weak references',
8+
author = 'Michael Roberts',
9+
author_email = 'michaelnathanroberts@gmail.com',
10+
url = 'https://github.com/user/michaelnathanroberts',
11+
download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on
12+
keywords = ['python 3'], # Keywords that define your package best
13+
install_requires=[],
14+
classifiers=[
15+
'Development Status :: 3 - Alpha',
16+
'Intended Audience :: Developers',
17+
'Topic :: Software Development :: Build Tools',
18+
'License :: OSI Approved :: MIT License',
19+
'Programming Language :: Python :: 3',
20+
'Programming Language :: Python :: 3.9',
21+
],
22+
)

0 commit comments

Comments
 (0)