File diff 8da32d9181da → 26d6d2c56c09
setup.py
Show inline comments
 
import os
 
from setuptools import setup, find_packages
 

	
 
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
 
INSTALL_REQUIREMENTS = ["pydenticon", "django"]
 
INSTALL_REQUIREMENTS = ["pydenticon", "django>=1.8.0"]
 
TEST_REQUIREMENTS = []
 

	
 
# allow setup.py to be run from any path
 
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 

	
 
setup(
 
    name='django-pydenticon',
 
    version='0.1',
 
    packages=find_packages(exclude=["testproject", "testproject.*"]),
 
    include_package_data=True,
 
    license='BSD',
 
    description='Django application providing generated identicons to the web.',