File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments