mirror of
https://github.com/jordansissel/fpm
synced 2025-09-04 08:54:39 +02:00
Added the following two flags: --[no-]python-downcase-name (python only) Should the target package name be in lowercase? (default: true) --[no-]python-downcase-dependencies (python only) Should the package dependencies be in lowercase? (default: true) fixes #326
14 lines
303 B
Python
14 lines
303 B
Python
from distutils.core import setup
|
|
|
|
setup(name="Example",
|
|
version="1.0",
|
|
description="sample description",
|
|
author="sample author",
|
|
author_email="sample email",
|
|
url="sample url",
|
|
packages=[],
|
|
package_dir={},
|
|
requires=["Dependency1", "dependency2"],
|
|
)
|
|
|