Packaging stuff
This commit is contained in:
parent
52b47ea17b
commit
2dc2339b6a
2
requirements.dev.txt
Normal file
2
requirements.dev.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
django
|
||||
humanize
|
||||
16
setup.py
Normal file
16
setup.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='asyncron',
|
||||
version='0.1',
|
||||
packages=find_packages(),
|
||||
#include_package_data=True, # Include static files from MANIFEST.in
|
||||
install_requires=[
|
||||
'Django>=5',
|
||||
'humanize',
|
||||
],
|
||||
classifiers=[
|
||||
'Framework :: Django',
|
||||
'Programming Language :: Python :: 3',
|
||||
],
|
||||
)
|
||||
Loading…
Reference in New Issue
Block a user